home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / h / hdinstallersii.dms / hdinstallersii.adf / Ishar2 / install3 < prev    next >
AmigaDOS Script File  |  1992-09-02  |  995b  |  55 lines

  1. .key where,spaces,pad1,pad2,pad3,pad4,pad5,pad6,pad7,pad8
  2. .bra {
  3. .ket }
  4.  
  5. if "{where}" eq ""
  6.     echo "No path entered. Install cancelled."
  7.     skip audi
  8. endif
  9.  
  10. if not "{spaces}" eq ""
  11.     echo "You must enclose the path name in double quotes. Install cancelled."
  12.     skip audi
  13. endif
  14.  
  15. if exists "{where}"
  16.     echo "The directory *"{where}*" already exists. Installation cancelled."
  17.     skip audi
  18. endif
  19.  
  20. echo "*NInstalling Ishar to directory *"{where}*"..."
  21.  
  22. echo "*NCreating directory..."
  23. makedir "{where}"
  24.  
  25. ask "Insert Ishar Disk 1:   ('Y' to continue 'N' Aborts)"
  26.  
  27. if not warn 
  28.     echo "Installation cancelled*N"
  29.     skip audi
  30. endif
  31.  
  32. copy empty: "{where}" all
  33.  
  34. ask "Insert Ishar Disk 2:   ('Y' to continue 'N' Aborts)"
  35.  
  36. if not warn 
  37.     echo "Installation cancelled*N"
  38.     skip audi
  39. endif
  40.  
  41. copy empty: "{where}" all
  42.  
  43. ask "Insert Ishar Disk 3:   ('Y' to continue 'N' Aborts)"
  44.  
  45. if not warn 
  46.     echo "Installation cancelled*N"
  47.     skip audi
  48. endif
  49. copy empty: "{where}" all
  50.  
  51. echo "*N Hard drive installation complete..."
  52.  
  53. lab audi
  54.  
  55.